home *** CD-ROM | disk | FTP | other *** search
/ PC PowerPlay 49 / PCPP49a.iso / editors / sofsdk / SoF SDK.msi / _7F3E76B1ACBF46A9A06BC458EC33BBE2 < prev    next >
Encoding:
Text File  |  2000-03-27  |  633 b   |  26 lines

  1. // template file for newyork directory
  2.  
  3. #include "../common/header.ds"
  4.  
  5. output "p:/base/ds/tsr1"
  6.  
  7.  
  8.  
  9.  
  10.  
  11. local entity npc_murder // the npc who will be shot
  12. local entity npc_killer // the guy who will kill the hostage
  13. local entity npc_watcher // guy watching the murder
  14.  
  15. npc_murder = find entity with targetname "npc_murder"
  16. npc_killer = find entity with targetname "npc_killer"
  17. npc_watcher = find entity with targetname "npc_watcher"
  18.  
  19. // THIS GETS RID OF ALL THESE GUYS IF THEY WERENT USED IN THE CAMERA SCRIPT IN THE TOKEN BOOTH
  20.  
  21. remove entity npc_murder 
  22. remove entity npc_killer
  23. remove entity npc_watcher
  24.  
  25.  
  26.